463d3d
@@ -469,7 +469,7 @@
public class HTable implements HTableInterface {
    * @throws IOException
    * @since 0.20.1
    */
-  public synchronized void delete(final List<Delete> deletes)
+  public void delete(final List<Delete> deletes)
   throws IOException {
     int last = 0;
     try {
@@ -487,7 +487,7 @@
public class HTable implements HTableInterface {
    * @throws IOException
    * @since 0.20.0
    */
-  public synchronized void put(final Put put) throws IOException {
+  public void put(final Put put) throws IOException {
     doPut(Arrays.asList(put));
   }
 
@@ -499,7 +499,7 @@
public class HTable implements HTableInterface {
    * @throws IOException if a remote or network exception occurs
    * @since 0.20.0
    */
-  public synchronized void put(final List<Put> puts) throws IOException {
+  public void put(final List<Put> puts) throws IOException {
     doPut(puts);
   }
 
@@ -583,7 +583,7 @@
public class HTable implements HTableInterface {
    * @throws IOException
    * @return true if the new put was execute, false otherwise
    */
-  public synchronized boolean checkAndPut(final byte [] row,
+  public boolean checkAndPut(final byte [] row,
       final byte [] family, final byte [] qualifier, final byte [] value,
       final Put put)
   throws IOException {
